home *** CD-ROM | disk | FTP | other *** search
/ Amoszine 8 / Amoszine 8 (Disk 2 of 3).adf / AMON_Extension.lha / amon_extension / examples_asc / FastCircle.Asc < prev    next >
Text File  |  1995-08-07  |  325b  |  22 lines

  1. ' Program: Fast Circle Example.
  2. '  Author: Paul Overy
  3. '    Date: 7/8/95
  4. '
  5. Cls 0 : Wait Vbl : Timer=0
  6. For K=1 To 140
  7.    Fast Circle 160,100,K,3
  8. Next K
  9. T1=Timer
  10. '
  11. Cls 0 : Wait Vbl : Timer=0
  12. Ink 3
  13. For K=1 To 140
  14.    Circle 160,100,K
  15. Next K
  16. T2=Timer
  17. '
  18. Print "fast circle took";T1;" frames"
  19. Print "Amos circle took";T2;" frames"
  20.  
  21.  
  22.